闘本 8.5 再帰的乗算
提出
code: txt
def multi(x, y, total):
if y == 0:
return total
total += x
multi(x, y-1, total)